| 12345678910111213141516171819202122232425262728293031323334353637 |
- import { NextApiRequest, NextApiResponse } from 'next'
- import apiWrapper from '@/lib/api/apiWrapper'
- export default (req: NextApiRequest, res: NextApiResponse) => apiWrapper(req, res, handler)
- async function handler(req: NextApiRequest, res: NextApiResponse) {
- const { method } = req
- switch (method) {
- case 'GET':
- return handleGetAll(req, res)
- case 'PATCH':
- return handlePatch(req, res)
- default:
- res.setHeader('Allow', ['GET'])
- res.status(405).json({ data: null, error: { message: `Method ${method} Not Allowed` } })
- }
- }
- const handleGetAll = async (_req: NextApiRequest, res: NextApiResponse) => {
- // Platform specific endpoint
- return res.status(200).json({
- db_anon_role: 'anon',
- db_extra_search_path: 'public',
- db_schema: 'public, storage',
- jwt_secret:
- process.env.AUTH_JWT_SECRET ?? 'super-secret-jwt-token-with-at-least-32-characters-long',
- max_rows: 100,
- role_claim_key: '.role',
- })
- }
- const handlePatch = async (_req: NextApiRequest, res: NextApiResponse) => {
- // Platform specific endpoint
- return res.status(200).json({})
- }
|